home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
tray1
/
traymenu.frm
< prev
Wrap
Text File
|
1996-05-02
|
2KB
|
86 lines
VERSION 4.00
Begin VB.Form Form2
Caption = "Form2"
ClientHeight = 1875
ClientLeft = 1140
ClientTop = 1515
ClientWidth = 2835
Height = 2565
Left = 1080
LinkTopic = "Form2"
ScaleHeight = 1875
ScaleWidth = 2835
Top = 885
Width = 2955
Begin VB.Menu mPopup
Caption = "Popup"
Begin VB.Menu mOpen
Caption = "&Open"
End
Begin VB.Menu mspe1
Caption = "-"
End
Begin VB.Menu mOpt1
Caption = "Option 1"
End
Begin VB.Menu mOpt2
Caption = "Option 2"
End
Begin VB.Menu mOpt3
Caption = "Option 3"
End
Begin VB.Menu mSep2
Caption = "-"
End
Begin VB.Menu mRemove
Caption = "&Remove"
End
End
End
Attribute VB_Name = "Form2"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Sub GeneralMessage()
MsgBox "Menu functionality is contained in Form2"
End Sub
Private Sub Form_Load()
End Sub
Private Sub mOpen_Click()
Form1.Show
End Sub
Private Sub mOpt1_Click()
GeneralMessage
End Sub
Private Sub mOpt2_Click()
GeneralMessage
End Sub
Private Sub mOpt3_Click()
GeneralMessage
End Sub
Private Sub mPopup_Click()
End Sub
Private Sub mRemove_Click()
Unload Form1
End Sub